﻿.colorOvex{
    background: #9D67DD;
    color: white;
    transition: 0.5s;
}

.colorOvex:hover{
    background: #8859c0;
}

.colorOvex2 {
    background: var(--color-400);
    color: white;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.colorOvex2:hover {
    background: var(--color-500);
        
}


.button{
    height: 50px;
    border-radius: 30px;
    padding: 0px 30px 0px 30px;
    border:1px solid #DDDDDD;
    cursor: pointer;
    p{
        margin: 0px;
    }
}

.btn_outline {
    border: 1px solid #d9d9d9;
    background: var(--color-100) !important;
    color: var(--color-950);
    transition: 0.5s;
    align-items: center;
}

    .btn_outline:hover {
        background: var(--color-500) !important;
        color: white !important;
        border: 1px solid white !important;
    }


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


.btn_squared {
    height: 48px;
/*    border-radius: 30px;*/
    padding: 0px 30px 0px 30px;
    border: 1px solid #DDDDDD;
    cursor: pointer;
    background: var(--color-500);
    color:white;
}


button {
    height: 48px;
    min-width: 92px;
    width: auto;
    padding: 0px 16px;
    border: none;
    color: white;
    border: none;
    transition: 0.5s;
    border-radius: 6px;
}

.btn_disabled {
    background: var(--color-100) !important;
    color: var(--color-400) !important;
    cursor: default !important;
    pointer-events: none !important;
}

.btn_principal {
    background: var(--color-500);
    
}

.btn_principal:hover {
    background: var(--color-600);
}

.btn_icon{
    display:flex;
    flex-direction:row;
    align-items:center;
    grid-gap:10px;
}

.btn_outline{
    background:transparent;
    border: 1px solid var(--color-300);
    color: var(--color-950)
}

.btn_outline:hover {
    background: var(--color-200);
    color: var(--color-950)
}

.input_box{
    display:flex;
    flex-direction:column;
    grid-gap:5px;
}

.input_box p{
    font-weight:500;

}

.input_box label {
    font-weight: 500;
}

input {
    border: 1px solid #DCDCDE;
    width: 291px;
    height: 48px;
    border-radius: 7px;
    padding: 0px 10px;
    transition: 0.5s;
}

select {
    border: 1px solid #DCDCDE;
    width: 291px;
    height: 48px;
    border-radius: 7px;
    padding: 0px 10px;
    transition: 0.5s;
}


input:focus {
    outline: none;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}

input::placeholder{

}



/*Checkbox*/






@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-13 input[type=checkbox] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

        .checkbox-wrapper-13 input[type=checkbox]:after {
            content: "";
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        .checkbox-wrapper-13 input[type=checkbox]:checked {
            --b: var(--color-500);
            --bc: var(--color-600);
            --d-o: .3s;
            --d-t: .6s;
            --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
        }

        .checkbox-wrapper-13 input[type=checkbox]:disabled {
            --b: var(--disabled);
            cursor: not-allowed;
            opacity: 0.9;
        }

            .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
                --b: var(--disabled-inner);
                --bc: var(--border);
            }

            .checkbox-wrapper-13 input[type=checkbox]:disabled + label {
                cursor: not-allowed;
            }

        .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        .checkbox-wrapper-13 input[type=checkbox]:focus {
            box-shadow: 0 0 0 var(--focus);
        }

        .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
            width: 21px;
        }

            .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
                opacity: var(--o, 0);
            }

            .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
                --o: 1;
            }

        .checkbox-wrapper-13 input[type=checkbox] + label {
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
            margin-left: 4px;
        }

        .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
            border-radius: 7px;
        }

            .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(var(--r, 20deg));
            }

            .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
                --r: 43deg;
            }
}

.checkbox-wrapper-13 * {
    box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
    box-sizing: inherit;
}


