
#popup_maker_options .inside {
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

#popup_maker_options .items {
    flex: 1 1 calc(50% - 42px);
    padding: 0 1rem;
    flex-direction: column;
    margin-bottom: 10px;
}

#popup_maker_options .items-note {
    max-width: 100%;
    flex-basis: 100%;
}

#popup_maker_options label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 13px;
    position: relative;
}

#popup_maker_options .how-content {
    position: absolute;
    left: 0;
    top: 30px;
    font-weight: 400;
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 999;
    min-height: 50px;
    align-items: center;
    width: calc(100% - 20px);
    display: none;
}

#popup_maker_options label:hover .how-content,
#popup_maker_options .how:hover .how-content {
    display: flex;
}

#popup_maker_options .items-sub {
    margin-top: 2px;
}

#popup_maker_options .items-sub {
    gap: 10px;
    align-items: center;
}

#popup_maker_options p {
    margin: 0 0 10px;
}

#popup_maker_options .items-sub,
#popup_maker_options .items,
#popup_maker_options .inside {
    display: flex;
}


#popup_maker_options input[type="radio"] {
    position: relative;
    width: 39px;
    height: 20px;
    appearance: none;
    background: #c2effd;
    outline: none !important;
    border-radius: 2rem;
    cursor: pointer;
    border: none !important;
    box-shadow: unset !important;
}

#popup_maker_options input[type="radio"]::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.5s;
}

#popup_maker_options input[type="radio"]:not(:checked)::before {
    animation: slideLeft 0.5s forwards;
}

#popup_maker_options input[type="radio"]:checked::before {
    animation: slideRight 0.5s forwards;
}

#popup_maker_options input[type="radio"]:checked {
    background: #33d79c;
}

#popup_maker_options input[type="radio"]:checked::before {
    background: #fff;
    height: 16px;
    width: 16px;
    top: -1px;
    left: -12px;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(30px);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(26px);
    }

    100% {
        transform: translateX(0);
    }
}

#popup_maker_options input[type=number],
#popup_maker_options input[type=text],
#popup_maker_options .select2-selection--multiple {
    border-color: #eee;
}

#popup_maker_options input[type=number],
#popup_maker_options input[type=text] {
    min-height: 2.5rem;
}

#popup_maker_options .select2-selection__choice {
    border-color: #eee;
    background: #eee;
}

#popup_maker_options label .dashicons {
    color: #c3c4c7;
}