html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* Minhas personalizações*/
.coresEstapasPet {
    background-color: #ede7e7;
}

/*input[type=radio] {
    display: none;
}

form input[type="radio"]:checked + label {
    background-color: #337ab7;
}*/

.label-prioridade {
    display: block;
    /*appearance: button;
    -webkit-appearance: button;
    -moz-appearance: button;
    -ms-appearance: button;*/
    /*font-family: 'Roboto', sans-serif;
    font-weight: 400;*/
    background: #DDDDDD;
    font-size: 1.6rem;
    color: #111111;
    border: 2px solid #AAAAAA;
    padding: 8px;
    width: 100%;
    margin: 0 auto;
    padding-top: 17px;
    text-align: center;
    height: 50px;
    /*width: 50px;*/
}

label.is-invalid {
    border: 1px solid #dc3545; /* mesma cor da borda de input inválido */
    border-radius: 0.375rem; /* arredondamento igual ao form-control */
    padding: 0.375rem 0.75rem; /* espaço interno parecido com input */
}


/****************Interruptor checkbox**********************/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 25px;
}

    .slider::before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider::before {
        transform: translateX(24px);
    }

a {
    text-decoration: none;
}

/* Submenu estilo */
.dropdown-submenu {
    position: relative;
}
    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.1rem;
        display: none;
    }
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }


.btn {
    margin: 5px;
}

.accordion-header-custom {
    cursor: pointer;
}

/* Ajustes de responsividade */
@media (max-width: 992px) {
    .dropdown-submenu .dropdown-menu {
        left: 0;
        top: 100%;
    }
}