.playwaze-cta {
    border-radius: 100px;
    border: 0.5px solid #E4E4E4;
    background: #EA8941;
    display: inline-flex;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.playwaze-cta-invert {
    border-radius: 100px;
    border: 0.5px solid #EA8941;
    background: #fff;
    display: inline-flex;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #EA8941;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}



.label-input {
    padding: 10px 15px;
    border: 1px solid;
    margin: 10px 0px;
    position: relative;
    border-radius: 10px;
    border-color: #e4e4e4;
    display: inline-block;
    font-family: "Nunito Sans", sans-serif;
}

    .label-input > label {
        position: absolute;
        top: -.65em;
        left: 15px;
        padding: 0px 5px;
        background-color: var(--white-back-top, #fff);
        color: var(--label-input-text,rgba(72,72,72,.5));
        font-size: 12px;
    }

    .label-input > input,
    .label-input > textarea {
        border: none;
        font-family: "Nunito Sans", sans-serif;
        color: var(--label-input-text,rgba(72,72,72,.5));
        resize: none;
        background-color: transparent;
    }

        .label-input > input:focus-visible,
        .label-input > textarea:focus-visible {
            outline: -webkit-focus-ring-color auto 0px;
        }

::-webkit-calendar-picker-indicator {
    color: var(--label-input-text,rgba(72,72,72,.5));
    opacity: .5;
}



.curved-input {
    background-color: var(--white-back, #fff);
    padding: 8px 0px 8px 14px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    border: 1px solid #E4E4E4;
    color: var(--black-text,#010101);
    gap: 8px;
    cursor: pointer;
    position: relative;
    align-items: center;
}


@media (max-width: 1024px) {
    .curved-input {
        font-size: 14px;
    }
}

.curved-input input {
    border: none;
    background-color: transparent;
    color: var(--black-text,#010101);
}

.curved-input > input:focus-visible,
.curved-input > textarea:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

.curved-input input[type="date"]::-webkit-inner-spin-button,
.curved-input input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}


.square-input {
    background: rgba(209, 209, 209, 0.50);
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    border: 1px solid #E4E4E4;
    color: var(--black-text,#010101);
    gap: 8px;
    cursor: pointer;
    position: relative;
    align-items: center;
}

    .square-input input {
        border: none;
        background-color: transparent;
        width: 100%;
        color: var(--black-text,#010101);
    }

    .square-input > input:focus-visible,
    .square-input > textarea:focus-visible {
        outline: -webkit-focus-ring-color auto 0px;
    }

    .square-input input[type="date"]::-webkit-inner-spin-button,
    .square-input input[type="date"]::-webkit-calendar-picker-indicator {
        background: transparent;
        bottom: 0;
        color: transparent;
        cursor: pointer;
        height: auto;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
    }




.switch {
    position: relative;
    display: inline-block;
    width: 45px!important;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #EA8941;
}

input:focus + .slider {
    box-shadow: 0 0 1px #EA8941;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}


.autocomplete-items {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 4px);
    background-color: var(--market-secondary-background-color);
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .24);
    text-align: left;
    max-height: 250px;
    overflow: auto;
    color: var(--market-primary-text-color);
    z-index: 500;
}

    .autocomplete-items div {
        cursor: pointer;
        padding: 10px 8px;
        display: flex;
        align-items: center;
        opacity: .8;
        font-weight: 400;
        white-space: break-spaces;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.autocomplete-items svg{
    padding:0px 8px;
}