.footer_left_bottom_part h3{
    font-size: 16px;
    line-height: 20px;
    margin-bottom:0px;
}

/*contact form*/

/* Form wrapper */
.MuiFormControl-root {
    position: relative;
}

/* Label default position */
.MuiInputLabel-root {
    position: absolute;
    top: 18px;
    left: 14px;
    font-size: 14px;
    color: #777;
    padding: 0 6px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Input */
.MuiOutlinedInput-input,
.MuiInputBase-inputMultiline {
    padding: 18px 14px 10px 14px;
}

/* when focused */
.MuiFormControl-root:focus-within .MuiInputLabel-root {
    top: -20px;
    font-size: 12px;
}

/* when has value */
.MuiFormControl-root.filled .MuiInputLabel-root {
    top: -20px;
    font-size: 12px;
    color: #555;
}

/* When focused or has value */
/*.MuiFormControl-root:focus-within .MuiInputLabel-root,
.MuiOutlinedInput-input:not(:placeholder-shown)+fieldset+.MuiInputLabel-root {
    top: -20px;
    font-size: 12px;
}*/

/* Border color on focus */
/*.MuiFormControl-root:focus-within fieldset {
    border-color: #e7a10c;
}*/



.mui-select-wrapper {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.mui-label {
    margin-bottom: 6px;
    display: block;

    font-size: 16px;
    line-height: 24px;
    color: #442b2a;
    font-weight: 500;
    padding-left: 15px;
}

.mui-select-box {
    padding: 14px 40px 14px 14px;
    cursor: pointer;
    position: relative;
    font-size: 15px;
    color: rgb(68 43 42);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(68 43 42);
    border-radius: 4px;
    font-weight: 600;
}

.mui-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #555;
}

.mui-dropdown {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    display: none;
    z-index: 999;
}

.mui-dropdown li {
    padding: 12px 16px;
    font-size: 15px;
    cursor: pointer;
}

.mui-dropdown li:hover {
    background: rgba(0, 0, 0, 0.04);
}

.mui-dropdown li.active {
    background: rgba(25, 118, 210, 0.08);
}


/*contact form*/



/*mobile menu*/
@media (max-width: 992px) {

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 18px;
        /* color: #fff; */
        cursor: pointer;
        z-index: 10000;
        border: 1px solid #896e6e !important;
        background: #eddbd6;
        padding: 3px 21px;
        border-radius: 4px;
        font-weight: 600;
    }

    .styloria_navbar_list_wrapper.hide {
        animation: myclose 0.6s ease forwards;
    }

    @keyframes myclose {
        from {
            right: 0;
            opacity: 1;
        }

        to {
            right: -260px;
            opacity: 0;
        }
    }

}

@media (min-width: 992px) {
    .mobile-menu-close {
        display: none;
    }
}






@media (max-width: 992px) {
    .styloria_navbar_list_wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #2b1b1b;
        transition: right 0.4s ease;
        z-index: 9999;
        padding-top: 80px;
    }


    .styloria_navbar_list_wrapper.show {
        display: block;
        margin-top: 1px;
        width: 250px;
        position: fixed;
        right: 0;
        padding-top: 90px;
        top: -1px;
        min-height: 100%;
        box-shadow: 0 3px 15px rgba(0, 0, 0, .43);
        animation: mymove 1s;
    }
}


.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    border: 3px solid #873750;
    box-shadow: 0 3px 8px #000;

    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* Visible state */
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    background: #fff;
    color: #873750;
    animation: floatBounce 2.5s ease-in-out infinite,
        shadowPulse 2.5s ease-in-out infinite;
}

/* Hover */
.back-to-top-btn:hover {
    background: #e7a10c;
    color: #fff;
}

@keyframes floatBounce {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}


@keyframes shadowPulse {
    0% {
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    50% {
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    }

    100% {
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }
}


/* ===== Heading ===== */
.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

/* ===== Testimonial Section ===== */
.testimonial {
    /*min-height: 375px;*/
    position: relative;
    padding: 25px 0;
    background-position: center;
    background-size: cover;
}

#testimonial4 .carousel-inner:hover {
    cursor: grab;
}

#testimonial4 .carousel-inner:active {
    cursor: grabbing;
}

/* ===== Slide Content ===== */
.testimonial4_slide {
    width: 50%;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.testimonial4_slide p {
    color: #666053;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 35px;
}

.testimonial4_slide h4 {
    color: #e79f10;
    font-size: 26px;
    font-weight: 600;
}

/* ===== Carousel Container Padding ===== */
.testimonial .carousel {
    padding-bottom: 50px;
}

/* ===== Arrow Buttons ===== */
#testimonial4 .carousel-control-prev,
#testimonial4 .carousel-control-next {
    width: auto;
    opacity: 1;
    top: 100px;
    transform: translateY(-50%);
}

/* Circle background */
#testimonial4 .carousel-control-prev span,
#testimonial4 .carousel-control-next span {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-size: 14px 14px;
}

/* Arrow icon color */
/*#testimonial4 .carousel-control-prev-icon,
#testimonial4 .carousel-control-next-icon {
  filter: invert(1);
}*/

/* Arrow positions */
#testimonial4 .carousel-control-prev {
    left: 25%;
}

#testimonial4 .carousel-control-next {
    right: 25%;
}

/* Hover effect */
#testimonial4 .carousel-control-prev:hover span,
#testimonial4 .carousel-control-next:hover span {
    background-color: #555;
}

/* ===== Indicators (dots) ===== */
.testimonial4_indicators .carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    bottom: 15px;
    text-align: center;
}

.testimonial4_indicators .carousel-indicators li {
    width: 14px;
    height: 14px;
    margin: 2px 3px;
    background: #fff;
    border-radius: 50%;
}

.testimonial4_indicators .carousel-indicators .active {
    background-color: #9dd3af;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .testimonial4_slide {
        width: 90%;
    }

    .testimonial4_slide p {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial4_slide h4 {
        font-size: 22px;
    }

    #testimonial4 .carousel-control-prev {
        left: 3%;
    }

    #testimonial4 .carousel-control-next {
        right: 3%;
    }
}

/* ------testimonial  close-------*/


/* Common styles extracted from index.html */

/* Emotion CSS styles */
.css-1cl3ihv {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-decoration-color: rgba(25, 118, 210, 0.4);
}

.css-1cl3ihv:hover {
    text-decoration-color: inherit;
}

.css-z4r21k {
    margin: 0;
    font: inherit;
    color: #1976d2;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-decoration-color: rgba(25, 118, 210, 0.4);
}

.css-z4r21k:hover {
    text-decoration-color: inherit;
}

.css-vubbuv {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
}

.css-11qrfta {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    -webkit-transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    color: #1976d2;
}

.css-11qrfta:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: rgba(25, 118, 210, 0.04);
}

@media (hover: none) {
    .css-11qrfta:hover {
        background-color: transparent;
    }
}

.css-11qrfta.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1ujsas3 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    -webkit-transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    color: #1976d2;
}

.css-1ujsas3::-moz-focus-inner {
    border-style: none;
}

.css-1ujsas3.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1ujsas3 {
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}

.css-1ujsas3:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: rgba(25, 118, 210, 0.04);
}

@media (hover: none) {
    .css-1ujsas3:hover {
        background-color: transparent;
    }
}

.css-1ujsas3.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-i44wyl {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: top;
}

.css-nd1nwr {
    display: block;
    transform-origin: top left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(14px, 16px) scale(1);
    -moz-transform: translate(14px, 16px) scale(1);
    -ms-transform: translate(14px, 16px) scale(1);
    transform: translate(14px, 16px) scale(1);
    -webkit-transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, -webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    z-index: 1;
    pointer-events: none;
}

.css-p0rm37 {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    padding: 0;
    position: relative;
    display: block;
    transform-origin: top left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(14px, 16px) scale(1);
    -moz-transform: translate(14px, 16px) scale(1);
    -ms-transform: translate(14px, 16px) scale(1);
    transform: translate(14px, 16px) scale(1);
    -webkit-transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, -webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    z-index: 1;
    pointer-events: none;
}

.css-p0rm37.Mui-focused {
    color: #1976d2;
}

.css-p0rm37.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
}

.css-p0rm37.Mui-error {
    color: #d32f2f;
}

.css-1v4ccyo {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    position: relative;
    cursor: text;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-radius: 4px;
}

.css-1v4ccyo.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.css-1v4ccyo:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.87);
}

@media (hover: none) {
    .css-1v4ccyo:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.css-1v4ccyo.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #1976d2;
    border-width: 2px;
}

.css-1v4ccyo.Mui-error .MuiOutlinedInput-notchedOutline {
    border-color: #d32f2f;
}

.css-1v4ccyo.Mui-disabled .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.26);
}

.css-1x5jdmq {
    font: inherit;
    letter-spacing: inherit;
    color: currentColor;
    padding: 4px 0 5px;
    border: 0;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0;
    width: 100%;
    -webkit-animation-name: mui-auto-fill-cancel;
    animation-name: mui-auto-fill-cancel;
    -webkit-animation-duration: 10ms;
    animation-duration: 10ms;
    padding: 16.5px 14px;
}

.css-1x5jdmq::-webkit-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-1x5jdmq::-moz-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-1x5jdmq:-ms-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-1x5jdmq::-ms-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-1x5jdmq:focus {
    outline: 0;
}

.css-1x5jdmq:invalid {
    box-shadow: none;
}

.css-1x5jdmq::-webkit-search-decoration {
    -webkit-appearance: none;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq::-webkit-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq::-moz-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq:-ms-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq::-ms-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq:focus::-webkit-input-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq:focus::-moz-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq:focus:-ms-input-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-1x5jdmq:focus::-ms-input-placeholder {
    opacity: 0.42;
}

.css-1x5jdmq.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.css-1x5jdmq:-webkit-autofill {
    -webkit-animation-duration: 5000s;
    animation-duration: 5000s;
    -webkit-animation-name: mui-auto-fill;
    animation-name: mui-auto-fill;
}

.css-1x5jdmq:-webkit-autofill {
    border-radius: inherit;
}

.css-19w1uun {
    border-color: rgba(0, 0, 0, 0.23);
}

.css-igs3ac {
    text-align: left;
    position: absolute;
    bottom: 0;
    right: 0;
    top: -5px;
    left: 0;
    margin: 0;
    padding: 0 8px;
    pointer-events: none;
    border-radius: inherit;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    min-width: 0%;
    border-color: rgba(0, 0, 0, 0.23);
}

.css-yjsfm1 {
    float: unset;
    width: auto;
    overflow: hidden;
    display: block;
    padding: 0;
    height: 11px;
    font-size: 0.75em;
    visibility: hidden;
    max-width: 0.01px;
    -webkit-transition: max-width 50ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    transition: max-width 50ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    white-space: nowrap;
}

.css-yjsfm1>span {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    opacity: 0;
    visibility: visible;
}

.css-13sljp9 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: top;
}

.css-1jeas20 {
    display: block;
    transform-origin: top left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(133% - 32px);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(14px, -9px) scale(0.75);
    -moz-transform: translate(14px, -9px) scale(0.75);
    -ms-transform: translate(14px, -9px) scale(0.75);
    transform: translate(14px, -9px) scale(0.75);
    -webkit-transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, -webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    z-index: 1;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.css-1ald77x {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    padding: 0;
    position: relative;
    display: block;
    transform-origin: top left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(133% - 32px);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(14px, -9px) scale(0.75);
    -moz-transform: translate(14px, -9px) scale(0.75);
    -ms-transform: translate(14px, -9px) scale(0.75);
    transform: translate(14px, -9px) scale(0.75);
    -webkit-transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, -webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    z-index: 1;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.css-1ald77x.Mui-focused {
    color: #1976d2;
}

.css-1ald77x.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
}

.css-1ald77x.Mui-error {
    color: #d32f2f;
}

.css-fvipm8 {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    position: relative;
    cursor: text;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-radius: 4px;
}

.css-fvipm8.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.css-fvipm8:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.87);
}

@media (hover: none) {
    .css-fvipm8:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.css-fvipm8.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #1976d2;
    border-width: 2px;
}

.css-fvipm8.Mui-error .MuiOutlinedInput-notchedOutline {
    border-color: #d32f2f;
}

.css-fvipm8.Mui-disabled .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.26);
}

.css-qiwgdb {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    color: currentColor;
    padding: 4px 0 5px;
    border: 0;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0;
    width: 100%;
    -webkit-animation-name: mui-auto-fill-cancel;
    animation-name: mui-auto-fill-cancel;
    -webkit-animation-duration: 10ms;
    animation-duration: 10ms;
    padding: 16.5px 14px;
}

.css-qiwgdb:focus {
    border-radius: 4px;
}

.css-qiwgdb::-ms-expand {
    display: none;
}

.css-qiwgdb.Mui-disabled {
    cursor: default;
}

.css-qiwgdb[multiple] {
    height: auto;
}

.css-qiwgdb:not([multiple]) option,
.css-qiwgdb:not([multiple]) optgroup {
    background-color: #fff;
}

.css-qiwgdb.css-qiwgdb.css-qiwgdb {
    padding-right: 32px;
}

.css-qiwgdb.MuiSelect-select {
    height: auto;
    min-height: 1.4375em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.css-qiwgdb::-webkit-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-qiwgdb::-moz-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-qiwgdb:-ms-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-qiwgdb::-ms-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-qiwgdb:focus {
    outline: 0;
}

.css-qiwgdb:invalid {
    box-shadow: none;
}

.css-qiwgdb::-webkit-search-decoration {
    -webkit-appearance: none;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb::-webkit-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb::-moz-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb:-ms-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb::-ms-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb:focus::-webkit-input-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb:focus::-moz-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb:focus:-ms-input-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-qiwgdb:focus::-ms-input-placeholder {
    opacity: 0.42;
}

.css-qiwgdb.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.css-qiwgdb:-webkit-autofill {
    -webkit-animation-duration: 5000s;
    animation-duration: 5000s;
    -webkit-animation-name: mui-auto-fill;
    animation-name: mui-auto-fill;
}

.css-qiwgdb:-webkit-autofill {
    border-radius: inherit;
}

.css-1k3x8v3 {
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    box-sizing: border-box;
}

.css-bi4s6q {
    position: absolute;
    right: 7px;
    top: calc(50% - .5em);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
}

.css-bi4s6q.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1636szt {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    position: absolute;
    right: 7px;
    top: calc(50% - .5em);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
}

.css-1636szt.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-14lo706 {
    float: unset;
    width: auto;
    overflow: hidden;
    display: block;
    padding: 0;
    height: 11px;
    font-size: 0.75em;
    visibility: hidden;
    max-width: 100%;
    -webkit-transition: max-width 100ms cubic-bezier(0.0, 0, 0.2, 1) 50ms;
    transition: max-width 100ms cubic-bezier(0.0, 0, 0.2, 1) 50ms;
    white-space: nowrap;
}

.css-14lo706>span {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    opacity: 0;
    visibility: visible;
}

.css-1hof3tc {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    position: relative;
    cursor: text;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 0 5px;
    position: relative;
    border-radius: 4px;
    padding: 16.5px 14px;
}

.css-1hof3tc.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.css-1hof3tc:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.87);
}

@media (hover: none) {
    .css-1hof3tc:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.css-1hof3tc.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #1976d2;
    border-width: 2px;
}

.css-1hof3tc.Mui-error .MuiOutlinedInput-notchedOutline {
    border-color: #d32f2f;
}

.css-1hof3tc.Mui-disabled .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.26);
}

.css-u36398 {
    font: inherit;
    letter-spacing: inherit;
    color: currentColor;
    padding: 0;
    border: 0;
    box-sizing: content-box;
    background: none;
    height: auto;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0;
    width: 100%;
    -webkit-animation-name: mui-auto-fill-cancel;
    animation-name: mui-auto-fill-cancel;
    -webkit-animation-duration: 10ms;
    animation-duration: 10ms;
    resize: none;
    padding-top: 0;
    padding: 0;
}

.css-u36398::-webkit-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-u36398::-moz-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-u36398:-ms-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-u36398::-ms-input-placeholder {
    color: currentColor;
    opacity: 0.42;
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-u36398:focus {
    outline: 0;
}

.css-u36398:invalid {
    box-shadow: none;
}

.css-u36398::-webkit-search-decoration {
    -webkit-appearance: none;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398::-webkit-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398::-moz-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398:-ms-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398::-ms-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398:focus::-webkit-input-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398:focus::-moz-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398:focus:-ms-input-placeholder {
    opacity: 0.42;
}

label[data-shrink=false]+.MuiInputBase-formControl .css-u36398:focus::-ms-input-placeholder {
    opacity: 0.42;
}

.css-u36398.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.css-u36398:-webkit-autofill {
    -webkit-animation-duration: 5000s;
    animation-duration: 5000s;
    -webkit-animation-name: mui-auto-fill;
    animation-name: mui-auto-fill;
}

.css-u36398:-webkit-autofill {
    border-radius: inherit;
}

.css-jkscjg {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    font-size: 1.5rem;
    color: #faaf00;
    cursor: pointer;
    text-align: left;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
}

.css-jkscjg.Mui-disabled {
    opacity: 0.38;
    pointer-events: none;
}

.css-jkscjg.Mui-focusVisible .MuiRating-iconActive {
    outline: 1px solid #999;
}

.css-jkscjg .MuiRating-visuallyHidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.css-79elbk {
    position: relative;
}

.css-13m1if9 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    pointer-events: none;
}

.css-1cw4hi4 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: inherit;
}

.css-1xh6k8t {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.26);
}

/* Keyframes */
@-webkit-keyframes mui-auto-fill {
    from {
        display: block;
    }
}

@keyframes mui-auto-fill {
    from {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill-cancel {
    from {
        display: block;
    }
}

@keyframes mui-auto-fill-cancel {
    from {
        display: block;
    }
}