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;
    
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/*Kendo grid edit and delete buttons buttons*/

.k-button-solid-primary, .k-button-solid-base {
    background-image: none;
}

.k-grid-edit-command, .k-grid-remove-command {
    border: none;
    background-color: transparent;
    color: #666666;
}

k-grid-edit-command span, .k-grid-remove-command span 
{
    color: #666666;
    background-color: transparent;
    background-image: none;
}

.k-grid-edit-command span:hover, .k-grid-remove-command span:hover
{
   color: #f2f2f2;
   background-color: transparent;
}

.k-grid-remove-command span:hover {
    border: solid 1px #ccc;
    color: #333333;
}
.k-grid .nowrap {
    white-space: nowrap;
    overflow: hidden;
}

/*--------login partial page*/
.lngSelected {
    font-weight: bold;
    color: #000000;
    text-decoration: underline;
    text-transform: capitalize;
}

.lngitem {
    text-decoration: none;
    cursor: pointer;
    text-transform: capitalize;
    color: #000000;
}

/*Quiz start*/

.quiz-container {
    max-width: 980px;
    margin: 36px auto;
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.question-group {
    display: none;
}

    .question-group.active {
        display: block;
        animation: fadeIn .28s ease-in-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.option label {
    cursor: pointer;
    display: block;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: .12s;
}

.option input {
    display: none;
}

    .option input:checked + label {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

.progress {
    height: 18px;
}

.btn-nav {
    margin-top: 18px;
}

.tox-tinymce {
    margin-bottom: 12px;
}
/* quiz the end */