
.kent-btn {
    cursor: pointer;
    position: relative;
    background: white;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 10%;
    transition: all 1s;
}
.kent-btn:after, .kent-btn:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border: 0px solid #fff;
    transition: all 1s;
}
.kent-btn:after {
    top: 0px;
    left: 0px;
    border-top: 5px solid #FF0000;
    border-left: 5px solid #FF0000;
    border-radius: 10%;
}
.kent-btn:before {
    bottom: 0px;
    right: 0px;
    border-bottom: 5px solid #FF0000;
    border-right: 5px solid #FF0000;
    border-radius: 10%;
}
.kent-btn:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.kent-btn:hover:before, .kent-btn:hover:after {
    width: 100%;
    height: 100%;
}

.kent-data-container {
    background: #ffebee;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kent-device_type{
    display: inline-block;
    padding: 0.9rem 1.8rem;
    margin: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #626262;
    border: 3px solid #e62c27;
    background-color: white;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.kent-device_type:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    color: white;
    background-color: #e62c27;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}
.kent-device_type:active{
    color: white;
}
.kent-device_type:hover:before {
    color: white;
    background-color: #e62c27;
    transform: translateX(0);
}
.kent-device_type:hover {
    color: white;
    background-color: #e62c27;
}

@media (max-width: 576px) { /* This will apply to mobile devices */
    .kent-device_type {
        display: inline-block;
        padding: 6px 10%;
        font-size: 12px;
        font-weight: 700;
        color: #626262;
        border: 3px solid #e62c27;
        background-color: white;
        cursor: pointer;
        position: relative;
        text-decoration: none;
        overflow: hidden;
        z-index: 1;
        font-family: inherit;
        width: 95%;
    }
}

.kent-device_type_selected
{
    color: white;
    background-color: #e62c27;
}
.container
{
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    width: auto;
}
