:root {
    --wptp_primary_color: #03a9f4;

    --wptp_w_border_color: #c1bcbc;
    --wptp_w_background_color: #f1f1f1ad;
    --wptp_w_border_width: 1px;
    --wptp_w_border_radius_top_left: 8px;
    --wptp_w_border_radius_top_right: 8px;
    --wptp_w_border_radius_bottom_right: 8px;
    --wptp_w_border_radius_bottom_left: 8px;

    --wptp_w_btn__border_radius_top_left: 999px;
    --wptp_w_btn__border_radius_top_right: 999px;
    --wptp_w_btn__border_radius_bottom_right: 999px;
    --wptp_w_btn__border_radius_bottom_left: 999px;
    --wptp_w_btn_width: 107px;
    --wptp_w_btn_color: #ffffff;
    --wptp_w_btn_bg_color: #d01313db;
    --wptp_w_otp_sent_loder_color: var(--wptp_primary_color);
}

label.wptp_otp_label {
    margin-bottom: 5px;
}

.wptp_checkout_otp {
    background: var(--wptp_w_background_color);
    border: var(--wptp_w_border_width) solid;
    border-color: var(--wptp_w_border_color);
    padding: 10px;
    margin: 10px 0;
    border-radius: var(--wptp_w_border_radius_top_left)
        var(--wptp_w_border_radius_top_right)
        var(--wptp_w_border_radius_bottom_right)
        var(--wptp_w_border_radius_bottom_left);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.wptp_verify_btn {
    background: var(--wptp_w_btn_bg_color);
    border-radius: var(--wptp_w_btn__border_radius_top_left)
        var(--wptp_w_btn__border_radius_top_right)
        var(--wptp_w_btn__border_radius_bottom_right)
        var(--wptp_w_btn__border_radius_bottom_left);
    color: var(--wptp_w_btn_color);
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 15px;
    touch-action: manipulation;
    width: var(--wptp_w_btn_width);
    word-break: break-word;
    margin: 10px 0;
}

.wptp_sent_btn_container {
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
}

.wptp_sent_btn_container .check-mark {
    display: none;
}

.wptp_sent_btn_container .check-mark.active {
    display: inline;
}

.wptp_sent_btn {
    margin: 5px;
    cursor: pointer;
}

.timer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#timer {
    display: none;
}

#timer.active {
    display: inline;
}

.otp_loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--wptp_w_otp_sent_loder_color);
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
    display: none;
}

@keyframes l3 {
    to {
        transform: rotate(1turn);
    }
}

.ver_btn_container {
    display: flex;
    align-items: center;
    gap: 10px;
}
