:root {
    --vw-unit: calc(100vw / 10);
    --blur-size: calc(100vw / 18);
    --blur-size-sm: calc(100vw / 15);
}

.layout-sidebar-large .main-header {
    box-shadow: 0 1px 20px rgba(44, 52, 66, 0.35) !important;
}

/*Top Banner Section*/
.dx-welcome-banner {
    display: grid;
    /*grid-template-columns: min(33%, 300px) auto min(33%, 300px);*/
    grid-template-columns: auto max(33%, 575px) auto;
    padding: 2rem 0 1rem;
}

.wy-blury-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wy-blury-glow:not(.single)::after, .wy-blury-glow::before {
    content: '';
    position: absolute;
    width: var(--vw-unit);
    aspect-ratio: 1 / 1;
    background: #0085ff;
    filter: blur(var(--blur-size-sm));
    will-change: filter, transform;
    user-select: none;
    pointer-events: none;
    border-radius: 50%;
    animation: BluryGlow 3s infinite;
    z-index: -1;
}

.wy-blury-glow:not(.single):after {
    right: 0;
    top: calc(100vw / 10);
}

.wy-blury-glow:not(.single):before {
    top: calc(100vw / 3);
    left: 0;
    user-select: none;
    pointer-events: none;
}

@keyframes BluryGlow {
    0%, 100% {
        opacity: .6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.dx-column-left,
.dx-column-right {
    padding: 5rem 0 0;
}

.dx-column-left,
.dx-column-right,
.dx-column-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;


    .section-box {
        display: flex;
        flex-direction: column;
        gap: 1rem;


        .dx-section-title {
            width: 100%;
            justify-content: flex-start;
        }
    }

    .integration-collapser {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: .5rem;
    }
}

.dx-column-left {


    .integration-collapser,
    .section-box {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .integration-collapser {
        align-items: stretch;
        justify-content: flex-start;
    }
}

.dx-column-right {


    .integration-collapser,
    .section-box {
        align-items: flex-start;
        justify-content: flex-start;


        .dx-section-title {
            text-align: right;
            justify-content: flex-end;
        }
    }

    .integration-collapser {
        align-items: stretch;
        direction: rtl;
    }

}

.dx-column-center {
    display: flex;
    justify-content: center;
}

.dx-center-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    img {
        width: 100%;
        max-width: max-content;
        height: auto;
        object-fit: contain;

        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        min-width: max-content;
        pointer-events: none;
    }
}

.dx-section-title {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0;
    white-space: normal;
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    letter-spacing: 0;
}

.section-collection-green {

    .more-link,
    .dx-section-title {
        color: #34a753;
    }
}

.section-collection-blue {

    .more-link,
    .dx-section-title {
        color: #3374ea;
    }
}

.section-collection-yellow {

    .more-link,
    .dx-section-title {
        color: #f8c32a;
    }
}

.section-collection-red {

    .more-link,
    .dx-section-title {
        color: #e53225;
    }
}

.integration-item {
    background-color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 35px;
    transition: 300ms ease all;

    img {
        width: 100%;
        max-width: max-content;
        height: auto;
        object-fit: contain;
        max-height: 30px;
    }
}

.integration-item:hover {
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}

.more-link {
    font-size: 12px;
    color: #007bff;
    font-weight: 600;
    letter-spacing: 0;
    direction: ltr;
}

/*Button Section*/

.dx-btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4.5rem 0 3rem;
}

.dx-review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    /*background: linear-gradient(90deg, #1462d0 , #6bbbf4);*/
    background: linear-gradient(90deg, #1462d0,  #6bbbf4, #6bbbf4);
    background-size: 200% 100%;
    background-position: 0 0;
    border-radius: 10px;
    min-width: min(33%, 320px);
    width: fit-content;
    max-width: max-content;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffff;
    padding: .35rem 2.5rem;
    position: relative;
    transition: 300ms ease all;
    line-height: 1;
    letter-spacing: 0;
}

.dx-circle-btn {
    background: #fff;
    border-radius: 50%;
    padding: .25rem;
    border: 10px solid #fece3f;
    outline: 9px solid rgba(254, 206, 63, 0.4);
    box-shadow: 0 0 0px 16px rgba(254, 206, 63, 0.3);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #434343;
    transition: 300ms ease all;
    animation: circleBtnAnimation 1.5s infinite alternate;
}

.dx-circle-btn:focus,
.dx-circle-btn:hover {
    color: #eabb30;
    transform: scale(1.033);
}

@keyframes dxBtnAnimation {
    0% {
        border-color: rgba(20, 98, 208, 0.8);
        box-shadow: 0 0 0px 5px rgba(0, 105, 255, 0.3);
    }
    100% {
        border-color: rgba(20, 98, 208, 0.6);
        box-shadow: 0 0 0px 5px rgba(0, 105, 255, 0.1);
    }
}
@keyframes dxBtnAnimationAlt {
    0% {
        border-color: rgba(55, 169, 81, 0.8);
        box-shadow: 0 0 0px 5px rgba(55, 169, 81, 0.3);
    }
    100% {
        border-color: rgba(55, 169, 81, 0.6);
        box-shadow: 0 0 0px 5px rgba(55, 169, 81, 0.1);
    }
}

@keyframes circleBtnAnimation {
    0% {
        border-color: rgba(254, 206, 63, 1);
        outline-color: rgba(254, 206, 63, 0.4);
        box-shadow: 0 0 0px 16px rgba(254, 206, 63, 0.3);
    }
    100% {
        border-color: rgba(254, 206, 63, 0.6);
        outline-color: rgba(254, 206, 63, 0.2);
        box-shadow: 0 0 0px 16px rgba(254, 206, 63, 0.1);
    }
}

.dx-review-icon {
    background: #fff;
    border-radius: 50%;
    padding: .5rem;
    margin: -1rem;
    margin-right: -1.5rem;
    border: 5px solid rgba(20, 98, 208, 0.8);
    box-shadow: 0 0 0px 5px rgba(0, 105, 255, 0.3);
    transition: 300ms ease all;
    color: #317fdc;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    animation: dxBtnAnimation 1.5s infinite alternate;

    .dx-rew-text {
        font-size: 1.25rem;
    }

    .dx-rew-text-sm {
        font-size: .875rem;
    }

    img,
    svg {
        width: 100%;
        max-width: 45px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    svg path {
        fill: #317fdc;
        transition: 300ms ease all;
    }
}

.dx-review-btn:focus,
.dx-review-btn:hover {
    background-position: -5rem 0;
    color: white;

    .dx-review-icon {
        transform: scale(1.05);
    }
}

.dx-review-btn.lft-iconed {
    flex-direction: row-reverse;
    gap: 1.5rem;

    .dx-review-icon {
        margin-left: -1.5rem;
        margin-right: 0;
    }
}

.dx-review-btn.alt-colored {
    background: #37a951;

    .dx-review-icon {
        border: 5px solid rgba(55, 169, 81, 0.8);
        box-shadow: 0 0 0px 5px rgba(55, 169, 81, 0.3);
        color: #37a951;
        animation: dxBtnAnimationAlt 1.5s infinite alternate;

        svg path {
            fill: #37a951;
        }
    }
}

.dx-review-btn.alt-colored:hover {
    background: #31b64e;
}

.dx-review-btn.dx-prom-btn {
    background: linear-gradient(90deg, #3baf5c, #5fdb82, #5fdb82);
    font-size: 1.25rem;
    background-position: 0 0;
    padding: 1.15rem 3rem;
    background-size: 200% 100%;
}

.dx-review-btn.dx-design-btn {
    background: linear-gradient(90deg, #f4ae1c, #f4c441, #f4c441);
    font-size: 1.25rem;
    padding: 1.15rem 3rem;
    background-position: 0 0;
    background-size: 200% 100%;
}

.dx-review-btn.dx-prom-btn:hover {
    background-position: -5rem 0;

}

.dx-review-btn.dx-design-btn:hover {
    background-position: -5rem 0;
}

.dx-design-col .dx-prom-inner-right {
    width: 100%;
    align-items: center;
    gap: 2rem;
}

.dx-prom-main-title {
    color: #1b7e97;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    padding-bottom: 1.5rem;
}

.dx-prom-grid {
    display: grid;
    grid-template-columns: 66% auto;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dx-prom-grid.dx-col-two {
    grid-template-columns: repeat(2, 1fr);

    .dx-prom-inner-right img {
        max-height: unset;
    }

    .dx-prom-title {
        min-height: unset;
    }
}

.dx-prom-inner-cont {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;

    .dx-prom-title {
        margin-bottom: 5px;
    }
}

.dx-prom-grid.dx-col-one {
    grid-template-columns: repeat(1, 1fr);

    .dx-prom-inner {
        padding-top: 0;
        padding-bottom: 0;
    }

    .dx-prom-inner-right {
        flex-direction: row;
        gap: 1rem;
    }

    .dx-prom-inner-right img {
        max-height: 155px;
    }

    .dx-prom-title {
        min-height: unset;
    }
}

.dx-prom-inner-right img.dx-fld-top {
    max-height: calc(222px + 2.5rem);
}

.dx-prom-inner-right img.dx-fld-top,
.dx-prom-grid.dx-col-two .dx-prom-inner-right img {
    margin-top: -2.5rem;
}


.dx-prom-grid.dx-col-thr {
    grid-template-columns: repeat(3, 1fr);
}

.dx-prom-col {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    z-index: 1;

    .dx-prom-inner {
        background: rgba(249, 250, 252, 0.91);
        padding: 1.5rem;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
        border: 2px solid #DFDFDFFF;
        border-radius: 12px;
    }
}

.hwto-build .dx-prom-inner {
    display: grid;
    grid-template-columns: 30% auto;
    align-items: center;
    gap: 3.5rem;
}

.dx-prom-inner-title {
    font-size: 40px;
    font-weight: bold;
    color: #1b7e97;
    text-wrap: balance;
    line-height: 1.2;
    max-height: max-content;
}

.dx-prom-col.hwto-build {
    padding-left: min(25%, 9.3rem);


    .dx-prom-inner-right {
        align-items: center;
    }
}

.dx-prom-inner-right span {
    font-size: 1.25rem;
    color: #434343;
    font-weight: 600;
    text-align: center;
}

.dx-prom-col.hwto-build::before {
    content: "";
    background: url("/upload/images/woyio-anasayfa/akilli-eticaret-maskot.png");
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    left: 0;
    top: 0;
    transform: translateY(-1rem);
}

.dx-prom-title {
    font-size: 1.5rem;
    color: #3f79f0;
    font-weight: 600;
    padding-top: 5px;
    margin-bottom: auto;
    margin-bottom: 5px;
    min-height: 63px;
    line-height: 1.2;
}

.dx-prom-desc {
    font-size: 1.225rem;
    color: #555555FF;
    font-weight: 500;
    padding-top: 5px;
}

.dx-prom-inner-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;

    img {
        width: 100%;
        max-width: max-content;
        height: auto;
        object-fit: contain;
        max-height: 222px;
        margin: 0 auto;
    }
}