/* Fifty maker app */
.avisoMitades {
    min-height: 100svh;
    height: 100%;
    width: 100%;
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(20, 18, 16, .55);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.avisoMitades.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.avisoMitades p {
    width: min(34rem, 92vw);
    min-height: 12rem;
    padding: 2rem;
    color: #2b2119;
    background: #fffaf4;
    border-radius: 18px;
    border: 1px solid rgba(255, 153, 0, .35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 750;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.avisoMitades p i {
    color: #ff9900;
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: .85rem;
}

.avisoMitades .fakeBtn {
    width: max-content;
    padding: .75rem 2.4rem;
    cursor: pointer;
    background: #ff9900;
    color: #22180f;
    border-radius: 999px;
    border: 1px solid #ffb13d;
    box-shadow: 0 10px 24px rgba(255, 153, 0, .24);
    font-size: 1rem;
    font-weight: 850;
}

.avisoMitades .fakeBtn:hover {
    background: #ff4500;
    color: #fff;
}

.maker {
    width: calc(100% - 2rem);
    max-width: 1180px;
    margin: 1rem auto 2rem;
    padding: 1rem;
    text-align: center;
    display: grid;
    gap: 1rem;
    background: #f7f8fb;
    border: 1px solid #eceff4;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(37, 45, 58, .08);
    cursor: default;
}

.maker .textContainer,
.maker .container,
.maker .screenContainer,
.maker .suiteMenu {
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e9edf3;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 38, 50, .06);
}

.maker .textContainer {
    padding: 1.1rem;
}

.maker .textContainer .title {
    color: #212632;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 900;
    margin-bottom: .55rem;
}

.maker .textContainer .infoMake {
    color: #606879;
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    font-weight: 600;
    line-height: 1.55;
}

.maker .textContainer .infoMake > span:last-of-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: .4rem 0;
    padding: .35rem .85rem;
    border-radius: 999px;
    background: #fff3df;
    color: #b24a00;
    border: 1px solid #ffd396;
    font-weight: 900;
    text-decoration: none;
}

.maker .textContainer .infoMake i {
    color: #7a8394;
    font-size: .95rem;
    font-weight: 500;
}

.maker .container {
    padding: 1rem;
}

.maker .container .optionContainer {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(12rem, .35fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.maker .container .optionContainer .optionSize,
.maker .container .list {
    min-width: 0;
}

.maker .container .optionContainer .optionSize {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .65rem;
    padding: 1rem;
    border-radius: 16px;
    background: #fbfcfe;
    border: 1px solid #edf0f5;
}

.maker .container .optionContainer .optionSize .selectSize,
.maker .container .list .halfContainer .selectOption p {
    color: #303744;
    font-size: .95rem;
    font-weight: 850;
    text-align: left;
}

.maker .container .optionContainer .optionSize select {
    display: block;
    width: 100%;
    min-height: 3rem;
    padding: .75rem .9rem;
    color: #2d313a;
    background: #fff;
    border: 1px solid #dce2ea;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: default;
}

.maker .container .list .halfContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.maker .container .list .halfContainer .selectOption {
    min-width: 0;
    padding: 1rem;
    background: #fbfcfe;
    border: 1px solid #edf0f5;
    border-radius: 16px;
}

.maker .container .list .halfContainer .selectOption p {
    margin-bottom: .6rem;
}

.maker .container .list .halfContainer .selectOption select {
    width: 100%;
    min-height: 3.25rem;
    padding: .8rem .9rem;
    cursor: pointer;
    color: #1f2530;
    background: #fff;
    border: 1px solid #dbe1ea;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 750;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.maker .container .list .halfContainer .selectOption select:hover,
.maker .container .list .halfContainer .selectOption select:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, .14);
}

.maker .screenContainer {
    --pizza-size: min(34rem, calc(100vw - 5rem));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 1rem;
    align-items: stretch;
}

.maker .leftContainer,
.maker .rightContainer {
    min-height: 28rem;
    display: grid;
    grid-template-rows: auto minmax(4.2rem, auto) minmax(var(--pizza-size), 1fr);
    gap: .65rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #edf0f5;
    overflow: visible;
}

.maker .leftContainer {
    border-right: 0;
    border-radius: 18px 0 0 18px;
}

.maker .rightContainer {
    border-left: 0;
    border-radius: 0 18px 18px 0;
}

.maker .nameLeft,
.maker .nameRight {
    min-height: 2.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202632;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 950;
}

.maker .leftDescription,
.maker .rightDescription {
    color: #657083;
    font-size: .95rem;
    line-height: 1.45;
    font-weight: 600;
}

.maker .imageLeftContainer,
.maker .imageRightContainer {
    width: calc(var(--pizza-size) / 2);
    height: var(--pizza-size);
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 153, 0, .12), rgba(255, 255, 255, 0) 45%),
        #f7f8fb;
    overflow: hidden;
}

.maker .imageLeftContainer {
    justify-self: end;
    border-radius: 999px 0 0 999px;
    border: 1px dashed #dfe5ee;
    border-right: 0;
}

.maker .imageRightContainer {
    justify-self: start;
    border-radius: 0 999px 999px 0;
    border: 1px dashed #dfe5ee;
    border-left: 0;
}

.maker .imageLeft,
.maker .imageRight {
    position: absolute;
    top: 0;
    width: var(--pizza-size);
    height: var(--pizza-size);
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 18px 18px rgba(31, 38, 50, .16));
    transition: opacity .22s ease, transform .22s ease;
}

.maker .imageLeft {
    left: 0;
    transform: translateX(8px) scale(.98);
}

.maker .imageRight {
    right: 0;
    transform: translateX(-8px) scale(.98);
}

.maker .imageLeft.active,
.maker .imageRight.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.maker .suiteMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.maker .btnsContainer .call {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .75rem 1.2rem;
    border-radius: 999px;
    background: #232833;
    color: #fff;
    border: 1px solid #303846;
    font-weight: 850;
}

.maker .btnsContainer .call:hover {
    background: #ff9900;
    color: #23180b;
    border-color: #ff9900;
}

.maker .priceContainer {
    margin-left: auto;
}

.maker .containerTotal {
    min-width: 12rem;
    padding: .85rem 1.2rem;
    border-radius: 16px;
    background: #fff7eb;
    border: 1px solid #ffd49a;
}

.maker .totalContainer {
    color: #a74400;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 950;
}

@media (max-width: 1200px) {
    .maker {
        width: calc(100% - 1.5rem);
    }

    .maker .container .optionContainer {
        grid-template-columns: 1fr;
    }

    .maker .screenContainer {
        --pizza-size: min(30rem, calc(100vw - 3rem));
    }

    .maker .leftContainer,
    .maker .rightContainer {
        min-height: 22rem;
    }
}

@media (max-width: 500px) {
    .maker {
        width: calc(100% - 1rem);
        padding: .65rem;
        border-radius: 18px;
    }

    .maker .textContainer,
    .maker .container,
    .maker .screenContainer,
    .maker .suiteMenu {
        border-radius: 15px;
    }

    .maker .container .list .halfContainer {
        grid-template-columns: 1fr;
    }

    .maker .screenContainer {
        --pizza-size: min(22rem, calc(100vw - 2rem));
        padding: .65rem;
    }

    .maker .leftContainer,
    .maker .rightContainer {
        min-height: 21rem;
        padding: .7rem .5rem;
    }

    .maker .imageLeftContainer,
    .maker .imageRightContainer {
        height: var(--pizza-size);
    }

    .maker .suiteMenu {
        align-items: stretch;
        flex-direction: column;
    }

    .maker .btnsContainer .call,
    .maker .containerTotal {
        width: 100%;
    }
}
